home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-03-20 | 2.4 KB | 91 lines | [TEXT/MPS ] |
- ; ------------------------------------------------------------------------------
- ;
- ; FILENAME
- ; UniversalMsgJumpTable.a
- ;
- ; DESCRIPTION
- ; This file contains the entry points for the universal messages which the
- ; ImageWriter LQ driver overrides. Note that the top of the jump table
- ; must contain a single long word, which is used by the Printing Manager
- ; to manage code segmentation at runtime. This long word should default
- ; to zero.
- ;
- ; COPYRIGHT
- ; Copyright Apple Computer, Inc. 1992-1994
- ; All rights reserved.
- ;
- ; 12/20/93 dmh Sync'd with the shipping 1.0b3 GX driver.
- ; 8/28/94 dmh Sync'd with the shipping 1.0.1 GX driver.
- ;
- ;--------------------------------------------------------------------------------
-
- SD_UniversalMsgJumpTable PROC EXPORT
-
- ; This long word is used for managing code segments
- EXPORT segReferenceCount
- segReferenceCount dc.l 0
-
- ; Following are the universal message jump table entry points
-
- IMPORT SD_Initialize
- JMP SD_Initialize
-
- IMPORT SD_ShutDown
- JMP SD_ShutDown
-
- IMPORT SD_JobFormatDialog
- JMP SD_JobFormatDialog
-
- IMPORT SD_JobPrintDialog
- JMP SD_JobPrintDialog
-
- IMPORT SD_JobFormatModeQuery
- JMP SD_JobFormatModeQuery
-
- IMPORT SD_OpenConnection
- JMP SD_OpenConnection
-
- IMPORT SD_CleanupOpenConnection
- JMP SD_CleanupOpenConnection
-
- IMPORT SD_StartSendPage
- JMP SD_StartSendPage
-
- IMPORT SD_ImagePage
- JMP SD_ImagePage
-
- IMPORT SD_RenderPage
- JMP SD_RenderPage
-
- IMPORT SD_DefaultPrinter
- JMP SD_DefaultPrinter
-
- IMPORT SD_DefaultFormat
- JMP SD_DefaultFormat
-
- IMPORT SD_DefaultJob
- JMP SD_DefaultJob
-
- IMPORT SD_SetupImageData
- JMP SD_SetupImageData
-
- IMPORT SD_FetchTaggedData
- JMP SD_FetchTaggedData
-
- IMPORT SD_DefaultDesktopPrinter
- JMP SD_DefaultDesktopPrinter
-
- IMPORT SD_GetDTPMenuList
- JMP SD_GetDTPMenuList
-
- IMPORT SD_DTPMenuSelect
- JMP SD_DTPMenuSelect
-
- IMPORT SD_RasterPackageBitmap
- JMP SD_RasterPackageBitmap
-
- IMPORT SD_RasterLineFeed
- JMP SD_RasterLineFeed
-
- END
-